home *** CD-ROM | disk | FTP | other *** search
- /* AREXX Script for MPEG-Soundplaying Layer 1,2&3 Opus5.5+ Filetypes
- ** Displays Song, MPEG-Layer, Playtime in a Dopus Progress Window
- **
- ** This script requires the modules 'OpusMPEGA.dopus5' !
- ** *****************************************************
- ** $VER: Play-MPx.dopus5 3.0 (20.3.98) ©1995-1998 by Eckhard Ludwig (Eckhard@top.east.de) [Emailware]
- ** This program is Email-Ware !
- **
- ** Call as:
- ** --------------------------------------------------------------------------
- ** (Doubleklick) ARexx DOpus5:ARexx/Play-MPx.dopus5 {f} {Qp} {Ql}
- ** --------------------------------------------------------------------------
- */
-
- parse arg '"'Titel'"' portname handle
-
- If ~SHOW("P",portname) THEN DO
- SAY portname' is not a valid port!'
- exit
- end
- options results
- address value portname
- If ~show('P','mpegport') then command 'OpusMPEGA'
- else dopus send 'mpegport' 'STOP'
- /*DUMMY=delay(20)*/
- address command 'waitforport mpegport'
-
- dopus send 'mpegport' 'PLAYSONG ' handle '"'Titel'"'
- exit
-